home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / mactool / thinkcgu.sit / picture ƒ / ring.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-11-09  |  434 b   |  22 lines

  1. /*
  2. *    FILE:        ring.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    October 8, 1990
  5. *
  6. *    Defines ring of cubes for picture application.
  7. */
  8.  
  9. # ifndef    ring_h
  10. # define    ring_h
  11.  
  12. # include    "segment.h"
  13.  
  14. /******************************************************************
  15. *   ring.  Nested segment consisting of several cubes.
  16. ******************************************************************/
  17. struct    Ring:Nested_Segment
  18. {
  19.     boolean            init(void);
  20. };
  21.  
  22. # endif